iT邦幫忙

2022 iThome 鐵人賽

DAY 10
0
自我挑戰組

LeetCode Top 100 Liked系列 第 10

[Day 10] Remove Duplicates from Sorted Array (Easy)

  • 分享至 

  • xImage
  •  

26. Remove Duplicates from Sorted Array

Question

Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same.

Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.

Return k after placing the final result in the first k slots of nums.

Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.

Example 1

Input: nums = [1,1,2]
Output: 2, nums = [1,2,_]
Explanation: Your function should return k = 2, with the first two elements of nums being 1 and 2 respectively.
It does not matter what you leave beyond the returned k (hence they are underscores).

Solution 1:

class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
        n = len(nums)
        uniqueIdx = 1
        for i in range(1, n):
            if nums[i] != nums[i - 1]:
                nums[uniqueIdx] = nums[i]
                uniqueIdx += 1
        return uniqueIdx

Time Complexity: O(N)
Space Complexity: O(1)

Reference

N/A

Follow-up: Remove Duplicates from Sorted Array II

TODO

Time Complexity: O()
Space Complexity: O()


上一篇
[Day 09] Regular Expression Matching (Hard)
下一篇
[Day 11] 136. Single Number (Easy)
系列文
LeetCode Top 100 Liked77
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言